home *** CD-ROM | disk | FTP | other *** search
- /*-----------------------------joystick.h-----------------------------------*/
- /*
- (C) Copyright 1992 David Conger
- */
-
- #ifndef __JOYSTICK_H__
-
-
-
- /*-------------------------------constants----------------------------------*/
-
- #define GAME_PORT_NOT_SUPPORTED -1
- #define JOYSTICK_NOT_FOUND -2
-
- #define BUTTON_1_MASK 0x01
- #define BUTTON_2_MASK 0x02
-
- /*-----------------------------end constants--------------------------------*/
-
-
-
- /*------------------------------prototypes----------------------------------*/
-
- int init_joystick(void);
- unsigned poll_buttons(void);
- int poll_joystick(int *x_value,int *y_value);
-
- /*----------------------------end prototypes--------------------------------*/
-
- #define __JOYSTICK_H__
- #endif
-
- /*---------------------------end joystick.h---------------------------------*/